home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource for Source: Assembly
/
assembly resource for source.iso
/
assem02
/
usoftpd.arc
/
FAMAIN.FOR
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1987-07-31
|
190 b
|
12 lines
INTERFACE TO INTEGER*2 FUNCTION POWER2(A,B)
INTEGER*2 A,B
END
C
INTEGER*2 POWER2
INTEGER*2 A,B
A = 3
B = 5
WRITE (*,*) '3 times 2 to the power of 5 is ',POWER2(A,B)
END